From: Ian Campbell Date: Thu, 22 Mar 2012 15:15:20 +0000 (+0000) Subject: arm: shorten constant names in head.S to keep within 80 columns X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=e99f5a9853fd6b3c05ff4c5cfc1f2b9a43f00017;p=xen.git arm: shorten constant names in head.S to keep within 80 columns Signed-off-by: Ian Campbell Committed-by: Ian Campbell --- diff --git a/xen/arch/arm/head.S b/xen/arch/arm/head.S index 6fb7214557..1858eb35c8 100644 --- a/xen/arch/arm/head.S +++ b/xen/arch/arm/head.S @@ -21,12 +21,12 @@ #include #include -#define XEN_PT_PT 0xe7f /* nG=1, AF=1, SH=10, AP=01, NS=1, ATTR=111, T=1, P=1 */ -#define XEN_PT_MEM 0xe7d /* nG=1, AF=1, SH=10, AP=01, NS=1, ATTR=111, T=0, P=1 */ -#define XEN_PT_DEV 0xe71 /* nG=1, AF=1, SH=10, AP=01, NS=1, ATTR=100, T=0, P=1 */ +#define PT_PT 0xe7f /* nG=1, AF=1, SH=10, AP=01, NS=1, ATTR=111, T=1, P=1 */ +#define PT_MEM 0xe7d /* nG=1, AF=1, SH=10, AP=01, NS=1, ATTR=111, T=0, P=1 */ +#define PT_DEV 0xe71 /* nG=1, AF=1, SH=10, AP=01, NS=1, ATTR=100, T=0, P=1 */ -#define PT_UPPER(x) (XEN_PT_##x & 0xf00) -#define PT_LOWER(x) (XEN_PT_##x & 0x0ff) +#define PT_UPPER(x) (PT_##x & 0xf00) +#define PT_LOWER(x) (PT_##x & 0x0ff) /* Macro to print a string to the UART, if there is one. * Clobbers r0-r3. */